home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C & C++ Multimedia Cyber Classroom
/
C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso
/
cpphtp2
/
code.jar
/
code
/
ch03
/
fig03_21.txt
< prev
next >
Wrap
Text File
|
1998-02-27
|
328b
|
15 lines
1 // References must be initialized
2 #include <iostream.h>
3
4 int main()
5 {
6 int x = 3, &y = x; // y is now an alias for x
7
8 cout << "x = " << x << endl << "y = " << y << endl;
9 y = 7;
10 cout << "x = " << x << endl << "y = " << y << endl;
11
12 return 0;
13 }
14